home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xsw / include / psmem.h < prev    next >
Text File  |  1995-05-09  |  2KB  |  82 lines

  1. /*
  2.  *    @(#) psmem.h 9.1 93/05/27 SCOINC
  3.  */
  4. /***************************************************************************
  5.  *
  6.  *    Copyright (c) 1990-1993        The Santa Cruz Operation, Inc.
  7.  *
  8.  *    All rights reserved.  No part of this program or publication may be
  9.  *    reproduced, transmitted, transcribed, stored in a retrieval system,
  10.  *    or translated into any language or computer language, in any form or
  11.  *    by any means, electronic, mechanical, magnetic, optical, chemical,
  12.  *    biological, or otherwise, without the prior written permission of:
  13.  *    
  14.  *        The Santa Cruz Operation , Inc.        (408) 425-7222
  15.  *        400 Encinal St., Santa Cruz, California 95060 USA
  16.  *
  17.  **************************************************************************/
  18. /*
  19.  * Modification History
  20.  *
  21.  *    S000 27-May-93    rickra
  22.  *        Initial check in....
  23.  */
  24.  
  25.  
  26. #define    VIRTUAL        0
  27. #define    SHARED        1
  28. #define    PRIVATE        2
  29. #define    WEIGHTED    3
  30. #define    TOTAL_1        4
  31.  
  32. #define    NONE        6
  33. #define    SWAP_CORE    7
  34. #define    FILE_CORE    8
  35. #define    LSTFILE_CORE    9
  36. #define    TOTAL_2        10
  37.  
  38. #define SWAP        11
  39. #define FILE        12
  40. #define LSTFILE        13
  41. #define ZERO        14
  42. #define FILL        15
  43. #define IOMAP        16
  44. #define WINDOW        16
  45.  
  46. #define SWAP_ONLY    17
  47. #define FILE_ONLY    18
  48. #define LSTFILE_ONLY    19
  49.  
  50. typedef struct ps_mem_pixel_struct 
  51. {
  52.  
  53. Pixel        virtual_pixel;
  54. Pixel        shared_pixel;
  55. Pixel        private_pixel;
  56. Pixel        weighted_pixel;
  57. Pixel        total_1_pixel;
  58.  
  59.  
  60. Pixel        none_pixel;
  61. Pixel        swap_core_pixel;
  62. Pixel        file_core_pixel;
  63. Pixel        lstfile_core_pixel;
  64. Pixel        total_2_pixel;
  65.  
  66. Pixel        swap_pixel;
  67. Pixel        file_pixel;
  68. Pixel        lstfile_pixel;
  69. Pixel        zero_pixel;
  70. Pixel        fill_pixel;
  71. Pixel        iomap_pixel;
  72. Pixel        window_pixel;
  73.  
  74. Pixel        swap_only_pixel;
  75. Pixel        file_only_pixel;
  76. Pixel        lstfile_only_pixel;
  77.  
  78.  
  79. } PS_MEM_PIXEL;
  80.  
  81.  
  82.